home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / admin / makedev-.5 / makedev- / makedev-1.5 / version.h < prev   
C/C++ Source or Header  |  1995-03-25  |  3KB  |  61 lines

  1. /*
  2.  * version.h: MAKEDEV-C version and version history
  3.  *
  4.  * Written 10-Dec-94 by David A. Holland, dholland@husc.harvard.edu
  5.  *
  6.  * Copyright 1994, 1995. All rights reserved. 
  7.  * See the file LEGAL.NOTICE for conditions of redistribution.
  8.  *
  9.  * Known bugs, in no particular order:
  10.  *    Problem with batches with hdc-d (see devinfo)
  11.  *    Should issue warning if current dir is not /dev
  12.  *    Should print more intelligent message if something isn't listed in
  13.  *    /proc/devices.
  14.  *    Should print more intelligent message if you try to make something 
  15.  *    listed in omits.
  16.  *    Should be able to omit ranges.
  17.  *
  18.  * History of MAKEDEV:
  19.  *
  20.  * Version 1.5:   25-Mar-95  Fixed makefile. 
  21.  *                           Look for config files in ".." if TESTING.
  22.  *                           Big source split: 
  23.  *                             makedev.syn -> parser.syn and devices.c.
  24.  *                           This file was created to hold the overall
  25.  *                           version history (and bug list).
  26.  *                           More fixes to devinfo.
  27.  *
  28.  * Version 1.4b:  25-Mar-95  Merged Rik's changes. 
  29.  *                           Additional bug fixes:
  30.  *                             Don't leave off the last entry in a range.
  31.  *                             Parse hex digits correctly [sigh...].
  32.  *                             Now we actually *use* the ishex flag.
  33.  *                           This version not released.
  34.  *
  35.  * Version 1.4a: 26-Feb-95   Forced devinfo and makedev.cfg to be in /etc.
  36.  *                           (Actually a variant of 1.4.1)
  37.  *                           [from faith@cs.unc.edu]
  38.  *                           This version shipped with util-linux 2.2.
  39.  *
  40.  * Version 1.4.1: 14-Feb-95  Bug fixes to DEVINFO.
  41.  * Version 1.4:   15-Jan-95  Wrote man pages. Now reads DEVINFO.local.
  42.  * Version 1.3:   31-Dec-94  Bug fixes. Added batches. Added omits.
  43.  * Version 1.2:   11-Dec-94  Add configuration file parsing.
  44.  * Version 1.1:   11-Dec-94  Distinguish block and character devices in the
  45.  *                           table of major device numbers. Changed the name 
  46.  *                           and format of the update cache file to include 
  47.  *                           the type. It appears that the old script was 
  48.  *                           broken in this regard.
  49.  *
  50.  * Version 1.0:   10-Dec-94  Initial version.
  51.  *
  52.  */
  53.  
  54. static const char *version = "MAKEDEV-C version 1.5";
  55. #ifdef UTIL_LINUX
  56. #define MYNAME "MAKEDEV-C"
  57. #else
  58. #define MYNAME "MAKEDEV"
  59. #endif
  60.  
  61.